home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "Declarations"
- Option Explicit
-
- Public Declare Function GetDriveType Lib "kernel32" Alias "GetDriveTypeA" (ByVal nDrive As String) As Long
-
- 'Tabs on main form.
- Public Const INCLUDE_TAB = 0
- Public Const EXCLUDE_TAB = 1
-
- 'Used with GetDriveType API to determine
- 'which drives will appear in backup media combo.
- Public Const DRIVE_REMOVABLE = 2
-
- 'Error values produced by SWBBack control.
- Public Const SWBBACK_ERR_CANCEL = 100
- Public Const SWBBACK_ERR_NO_FILES = 101
-
-
-